home *** CD-ROM | disk | FTP | other *** search
/ Resource for Source: C/C++ / Resource for Source - C-C++.iso / codelib5 / v_07_02 / v7n2046b.txt < prev    next >
Encoding:
Text File  |  1995-11-01  |  292 b   |  15 lines

  1. /* interface to vmalloc module */
  2. #include <malloc.h>
  3.  
  4. char *vmalloc();
  5. void vfree();
  6. void vverify();
  7. char *vrealloc();
  8. char *vcalloc();
  9. void vdump();
  10.  
  11. #define malloc(a) vmalloc(a)
  12. #define free(a) vfree(a)
  13. #define realloc(a, b) vrealloc(a, b)
  14. #define calloc(a, b) vcalloc(a, b)
  15.